net/http.Transport.idleConnWait (field)
8 uses
net/http (current package)
transport.go#L99: idleConnWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L949: if q, ok := t.idleConnWait[key]; ok {
transport.go#L972: delete(t.idleConnWait, key)
transport.go#L974: t.idleConnWait[key] = q
transport.go#L1097: if t.idleConnWait == nil {
transport.go#L1098: t.idleConnWait = make(map[connectMethodKey]wantConnQueue)
transport.go#L1100: q := t.idleConnWait[w.key]
transport.go#L1103: t.idleConnWait[w.key] = q
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |